home *** CD-ROM | disk | FTP | other *** search
/ Graphics Plus / Graphics Plus.iso / general / modelers / geomview / source.lha / Geomview / src / bin / tackdown / origin.common.h < prev    next >
C/C++ Source or Header  |  1992-12-09  |  997b  |  40 lines

  1. #ifndef ORIGIN_COMMON_H
  2. #define ORIGIN_COMMON_H
  3.  
  4. /*
  5.  * Routines beginning with "internals" are found in the common code.
  6.  */
  7. void internalsInit();
  8. void internalsShow();
  9. void internalsDone();
  10. void internalsCancel();
  11. void internalsQuit();
  12.  
  13. /*
  14.  * These routines are to be found in the machine-specific code and will
  15.  * be called from the common code 
  16.  */
  17.  
  18. /* Disable the Show button */
  19. void uiDisableShow();
  20. /* Enable the Show button */
  21. void uiEnableShow();
  22.  
  23. /* Disable the Done and Cancel buttons */
  24. void uiDisableDoneCanel();
  25. /* Enable the Done and Cancel buttons */
  26. void uiEnableDoneCanel();
  27.  
  28. /* Put str1, str2, and str3 as the new instructions */
  29. void uiSetInstructions(char *str1, char *str2, char *str3, char *str4);
  30.  
  31. /* Copy the name of the target object to name */
  32. void uiGetTargetname(char *name);
  33. /* Set the name of the target object to name */
  34. void uiSetTargetname(char *name);
  35.  
  36. /* Display an error message (up to 3 lines long) */
  37. void uiError(char *str1, char *str2, char *str3);
  38.  
  39. #endif
  40.